Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
   System.Threading.Thread.CurrentThread.CurrentCulture = New CultureInfo("en-US")

   Dim myList As List(Of String) = New List(Of String)
        
   myList.Add("Waszyngton")
   myList.Add("Helsinki")
   myList.Add("Moskwa")
   myList.Add("Warszawa")
   myList.Add("Vancouver")
   myList.Add("Wadowice")

   myList.Sort()

   For Each item As String In myList
      Response.Write(item.ToString() + "<br>")
   Next
End Sub
